/* RESET */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

/* BASE – reuse main site palette */
:root {
  --sunset-1: #5a0c0c;
  --sunset-2: #a4161a;
  --sunset-3: #e85d04;
  --sunset-4: #ff9f1c;
  --sunset: linear-gradient(135deg, var(--sunset-1) 0%, var(--sunset-2) 32%, var(--sunset-3) 64%, var(--sunset-4) 100%);
  --sunset-glass: linear-gradient(135deg, rgba(90, 12, 12, 0.82) 0%, rgba(164, 22, 26, 0.82) 32%, rgba(232, 93, 4, 0.82) 64%, rgba(255, 159, 28, 0.82) 100%);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Manrope", "Segoe UI", Roboto, Arial, sans-serif;
  color: #fff;
  background: var(--sunset);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-attachment: fixed;
}

/* NAV – same style, logo */
.logo-link {
  display: inline-flex;
  align-items: center;
}

.site-logo {
  height: 56px;
  width: auto;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, .35));
}

.rv-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--sunset-glass);
  backdrop-filter: blur(10px);
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
}

/* HERO */
.rv-hero {
  text-align: center;
  padding: 48px 16px 24px;
}

.rv-title {
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  color: #fff;
}

.rv-tagline {
  margin: 0 auto 14px;
  max-width: 720px;
  opacity: .95;
}

/* Jump pills */
.rv-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 8px auto 0;
}

.rv-pills a {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .15);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, .25);
}

.rv-pills a:hover {
  background: rgba(255, 255, 255, .25);
}

/* SECTIONS – centralised layout */
[id] {
  scroll-margin-top: 80px;
}

.rv-section {
  padding: 28px 0;
}

.rv-container {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
}

.rv-dish {
  margin: 0 auto 12px;
  text-align: center;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  color: #fff;
}

.rv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  justify-items: center;
}

.rv-card {
  background: #fff;
  color: #111;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .18);
  padding: 16px;
  text-align: center;
  width: 100%;
  max-width: 520px;
}

.rv-card p {
  margin: 6px 0;
}

.rv-meta {
  font-size: .95rem;
  opacity: .8;
}

.rv-stars {
  color: #ffc403;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

/* Back to top */
.rv-top {
  text-align: center;
  margin: 18px 0 8px;
}

.rv-top a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.rv-top a:hover {
  text-decoration: underline;
}

/* FOOTER – smaller icons */
.site-footer {
  background: var(--sunset-glass);
  color: #fff;
  text-align: center;
  padding: 20px 12px 28px;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.socials {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.social-link {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .12);
  color: #111;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.social-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, .18);
}

.social-link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .rv-hero {
    padding: 40px 12px 16px;
  }

  .site-logo {
    height: 56px;
  }
}

/* Feature: Hover enlarge effect (used by JavaScript adding .hover-zoom) */
.hover-zoom{
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  will-change: transform;
}

.hover-zoom:hover,
.hover-zoom:focus-within{
  transform: scale(1.03) translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

@media (prefers-reduced-motion: reduce){
  .hover-zoom{ transition: none; }
  .hover-zoom:hover,
  .hover-zoom:focus-within{ transform: none; }
}

/* Feature: Back-to-top floating button (created by JavaScript) */
.back-to-top{
  position: fixed;
  right: 16px;
  bottom: 16px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  display: none;
  background: #fff;
  color: #111;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

.back-to-top.show{
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.back-to-top:hover{
  filter: brightness(0.95);
}

/* Feature: Reviews pill active state (scrollspy) */
.rv-pills a.is-active{
  background: rgba(255,255,255,0.35);
  border-color: rgba(255,255,255,0.55);
  transform: translateY(-1px);
}
